kimeraapp / pythonjobs.ie

Python jobs Ireland
http://pythonjobs.ie
GNU General Public License v2.0
30 stars 28 forks source link

Typo in README? #111

Open samiujan opened 7 years ago

samiujan commented 7 years ago

Hi

I think I found a typo

The project requires Python 3:

Make sure to install Python 3.x instead of the default 2.x

And asks you to install python3

$ virtualenv --python=/usr/bin/python3 env You can activate it.

But expects you to see 2.7

$ source ./env/bin/activate Verify the version of python from the 1st line by the below command.

$ python Python 2.7.6 (default, Jun 22 2015, 17:58:13)

Is this a typo? If yes, I can fix it and send a PR

IsFlwrs commented 6 years ago

Hi @samiujan

First you may check where is the path to your python3 with this command for linux / mac

$ which python3 $ /usr/local/bin/python3

After you are ready for create the virtual environment, you can try:

virtualenv --python=/usr/local/bin/python3 env or
virtualenv --python=python3 env