Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you create a virtualenv using python installed by pyenv

I have 2 pyenv versions installed

pyenv versions
  system
* 2.7 (set by ../.python-version)
  3.5.3

when I am creating a virtualenv inside my project directory, I want it to create a virtualenv for the current pyenv python version 2.7

but when i'm creating one using mkvirtualenv whatever

the virtual env is creating a python3 virtualenv

ll ~/.virtualenvs/mobile2/bin
total 5800
-rw-r--r--  1 ohadperry  staff   2.0K Sep  6 10:59 activate
-rw-r--r--  1 ohadperry  staff   1.0K Sep  6 10:59 activate.csh
-rw-r--r--  1 ohadperry  staff   2.1K Sep  6 10:59 activate.fish
-rw-r--r--  1 ohadperry  staff   1.1K Sep  6 10:59 activate_this.py
-rwxr-xr-x  1 ohadperry  staff   266B Sep  6 10:59 easy_install
-rwxr-xr-x  1 ohadperry  staff   266B Sep  6 10:59 easy_install-3.5
-rwxr-xr-x  1 ohadperry  staff   149B Sep  6 10:59 get_env_details
-rwxr-xr-x  1 ohadperry  staff   238B Sep  6 10:59 pip
-rwxr-xr-x  1 ohadperry  staff   238B Sep  6 10:59 pip3
-rwxr-xr-x  1 ohadperry  staff   238B Sep  6 10:59 pip3.5
-rw-r--r--  1 ohadperry  staff    71B Sep  6 10:59 postactivate
-rw-r--r--  1 ohadperry  staff    73B Sep  6 10:59 postdeactivate
-rwxr-xr-x  1 ohadperry  staff    68B Sep  6 10:59 preactivate
-rw-r--r--  1 ohadperry  staff    74B Sep  6 10:59 predeactivate
-rwxr-xr-x  1 ohadperry  staff   2.8M Sep  6 10:58 python
-rwxr-xr-x  1 ohadperry  staff   2.3K Sep  6 10:59 python-config
lrwxr-xr-x  1 ohadperry  staff     6B Sep  6 10:58 python3 -> python
lrwxr-xr-x  1 ohadperry  staff     6B Sep  6 10:58 python3.5 -> python
-rwxr-xr-x  1 ohadperry  staff   245B Sep  6 10:59 wheel
like image 212
Ohad Perry Avatar asked Oct 11 '25 23:10

Ohad Perry


2 Answers

If you're using pyenv, I would recommend building a pyenv controlled virualenv (make sure pyenv-virtualenv is installed first)

$ pyenv virtualenv 2.7 <your new env>

Which you can then switch to this virtualenv using pyenv

$ pyenv local <your new env>

or

$ pyenv shell <your new env>
like image 72
danodonovan Avatar answered Oct 15 '25 11:10

danodonovan


for python2.7

virtualenv -p /usr/bin/python2.7 my_env
like image 43
Somil Avatar answered Oct 15 '25 13:10

Somil