I will write it as a memorandum.
Middleware | version |
---|---|
OS | macOS Sierra |
Python | 3.6.1 |
pip | 9.0.1 |
virtualenv | 15.0.1 |
If you execute the following command anywhere according to the official documentation, it will be as follows.
$ virtualenv ENV
Using base prefix '/Users/<User directory>/.pyenv/versions/3.6.1'
New python executable in /Users/<User directory>/Desktop/ENV/bin/python3.6
Also creating executable in /Users/<User directory>/Desktop/ENV/bin/python
Installing setuptools, pip, wheel...done.
Here, ʻENV` is a folder of the newly created environment, and if you give it an arbitrary name, a folder will be created with that name.
Recommended Posts