Skip to content Skip to sidebar Skip to footer

Install Different Versions Of Python Packages And Access Via Shell Command?

We are using Python scripts to process satellite images using different toolboxes or libraries (like GDAL etc.). We now have run into the problem that some 3rd-party Python applica

Solution 1:

You could have a look at pythonbrew or pyenv.

I just used pythonbrew recently. I just run my program with a bash script (to avoid typing the whole path):

#!/bin/bash
~/.pythonbrew/pythons/Python-2.7.7/bin/python my_program.py

Post a Comment for "Install Different Versions Of Python Packages And Access Via Shell Command?"