Not able to access my file from Jupiter Notebook

HI,
I am not able to access the file in my dir form jupiter Notebook.

%run 1.py
ERROR:root:File '1.py' not found

/home/ramaiahchowdhary8086
[ramaiahchowdhary8086@cxln5 ~]$ ls -lat 1.py
-rw-r–r-- 1 ramaiahchowdhary8086 ramaiahchowdhary8086 18 May 9 18:28 1.py
[ramaiahchowdhary8086@cxln5 ~]$

How do we link??

Thanks
Ramaiah

@Chenchu_Ramaiah_Komm Can you check if you are running the file from correct directory?
You can run shell commands in Jupyter with a ! before the command

For example if you want to list directory you can execute !ls in your Jupyter cell.

Thanks Ashwani… I fixed the proper path it works…

Thanks
Ram

Not able to activate python3.

[ramaiahchowdhary8086@cxln5 ~]$ python
Python 2.7.5 (default, Apr 9 2019, 14:30:50)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.

[ramaiahchowdhary8086@cxln5 ~]$ source activate py36
bash: activate: No such file or directory

could you please help here?

Thanks
Ram

In order to use python 3, run the following in console/shell/terminal:
export PATH=/usr/local/anaconda/bin:$PATH

After this running python will launch python 3.