godot-python
godot-python copied to clipboard
Running on linux with pip
Hello and thanks for your work.
I tried to run it on a linux system (arch) and I needed to do the following to get pip to work:
$ cd <project_dir>/addons/pythonscript/x11-64
$ chmod +x ./bin/python3.8 # not executable by default.
$ ./bin/python3.8 -m ensurepip --upgrade # Needed to get pip
$ ./bin/python3.8 -m pip --version
pip 21.3.1 from <project_dirs/addons/pythonscript/x11-64/lib/python3.8/site-packages/pip (python 3.8)
Thank you.