We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python3 -m venv /path/to/new/virtual/environment
python -m venv myenv
cd myenv\Scripts
activate
pip install - r requirements.txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
venv를 이용하여 가상환경을 만들 것이므로 venv 실행
가상환경 이름을 지정해주기 (ex) > myenv
가상환경 실행을 위해 Scripts에 접근
가상환경을 실행시킴
만약 requirement.txt가 있다면
가상환경에 라이브러리 설치를 하기위해
Scripts 에 requirements.txt를 복붙하고 아래의 코드를 실행
The text was updated successfully, but these errors were encountered: