ERROR! 가상환경 venv 파일을 만드는 중에 에러가 떴다!
터미널 명령어는 거의 대부분 도움말 기능이 탑재되어 있음! 무언가 안될때는 메뉴얼을 살펴봅시다.
터미널 창에
python -m venv -h
```
명령어를 실행하면 venv명령어가 무엇을 하는건지 나올거예요.
venv가 하는 일:
Creates virtual Python environments in one or more target directories.
"어떤 *목표 디렉토리에다가 파이썬 가상 환경을 만든다."
내가 작성한 python -v venv에서는 가상환경을 만든다는 있지만 목표 디렉토리가 없다.
!point venv 명령어에 대한 이해가 부족하다!
[파일과 디렉토리]
Glossary
Glossary absolute error: The absolute value of the difference between a mathematical value and its finite approximation in a computer. absolute path: A path that refers to a particular location in a file system. Absolute paths are usually written with resp
aispiration.com