python3 - Geany is not compiling python script, but it runs on terminal - Ask Ubuntu
i installed anaconda, , run scripts on terminal with:
python3 scritp.py
when execute on geany get:
importerror: no module named 'numpy'
how run python script on geany on terminal?
you should write full python3 path execute on geany, explained below:
first, on terminal:
which python3
and you'll like:
/home/myuser/anaconda3/bin/python3
copy it, open python script on geany, build>set build commands>execute commands>execute> , substitute python
/home/myuser/anaconda3/bin/python3
(of course if using other python version, procedure same)
Comments
Post a Comment