You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if you try to run from geany using Demo.py in the top directory it's fine so long as build commands tell it to execute python ../Demo.py "%e" from the demos directory as working directory (ie nothing in the field).
If you tell it to use the full path as the working path to top directory it works fine with python Demo.py "%e"
If you tell it to use ../ as the working directory it Fails to create file:Permission denied
option 1 is simplest as it only need to have one field changed
if you try to run without using Demo.py in the top directory:
when in top directory
..$ python demos/Pi3d2.py
Traceback (most recent call last):
File "demos/Pi3d2.py", line 5, in
from pi3d import *
ImportError: No module named pi3d
when in demos directory (which is really where we want the demos to run from i.e. if opened with geany this is where they would run from)
../demos $ python demos/Pi3d2.py
Traceback (most recent call last):
File "Pi3d2.py", line 5, in
from pi3d import *
ImportError: No module named pi3d
The text was updated successfully, but these errors were encountered:
option 1 is simplest as it only need to have one field changed
if you try to run without using Demo.py in the top directory:
when in top directory
..$ python demos/Pi3d2.py
Traceback (most recent call last):
File "demos/Pi3d2.py", line 5, in
from pi3d import *
ImportError: No module named pi3d
when in demos directory (which is really where we want the demos to run from i.e. if opened with geany this is where they would run from)
../demos $ python demos/Pi3d2.py
Traceback (most recent call last):
File "Pi3d2.py", line 5, in
from pi3d import *
ImportError: No module named pi3d
The text was updated successfully, but these errors were encountered: