I created a folder via virtualenv command, but the result isn't what I wanted.
[root@localhost opt]# virtualenv my_env
New python executable in /opt/my_env/bin/**python2.6**
Also creating executable in /opt/my_env/bin/python
Installing setuptools, pip, wheel...done.
My system is CentOS 6.5. Before I created my folder I upgraded my python 2.6 to python 3.6. Then I wanted to create an isolated environment to practice Django. Unfortunately, the folder has python 2.6, it should be python 3.6. Can someone tell me what happened?