godot-python icon indicating copy to clipboard operation
godot-python copied to clipboard

Running on linux with pip

Open luxcem opened this issue 4 years ago • 1 comments

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)

luxcem avatar Nov 23 '21 23:11 luxcem

Thank you.

ca3games avatar Dec 20 '21 14:12 ca3games