浏览代码

fixing typos

/develop-gpu-test
Anupam Bhatnagar 5 年前
当前提交
f5b57675
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 4
      docs/Using-Virtual-Environment.md

4
docs/Using-Virtual-Environment.md


## Mac OS X Setup
1. Create a folder where the virtual environments will reside `$ mkdir ~/python-venvs`
1. Create a folder where the virtual environments will reside `$ mkdir ~/python-envs`
1. To create a new environment named `sample-env` execute `$ python3 -m venv ~/python-envs/sample-env`
1. To activate the environment execute `$ source ~/python-envs/sample-env/bin/activate`
1. Verify pip version is the same as in the __Installing Pip__ section. In case it is not the latest, upgrade to

## Windows Setup
1. Create a folder where the virtual environments will reside `$ md python-venvs`
1. Create a folder where the virtual environments will reside `$ md python-envs`
1. To create a new environment named `sample-env` execute `$ python3 -m venv python-envs\sample-env`
1. To activate the environment execute `$ python-envs\sample-env\Scripts\activate`
1. Verify pip version is the same as in the __Installing Pip__ section. In case it is not the latest, upgrade to

正在加载...
取消
保存