초보 개발자

venv설정 시 The virtual environment was not created successfully because ensurepip is notavailable. 본문

Error

venv설정 시 The virtual environment was not created successfully because ensurepip is notavailable.

taehyeki 2022. 3. 7. 20:12

The virtual environment was not created successfully because ensurepip is not
available.  On Debian/Ubuntu systems, you need to install the python3-venv
package using the following command.

 

venv를 사용해보려고 했는데 위와 같은 오류가 발생하였다.

 

단순히 콘솔에서 하라는 내용대로 따라해보았다. sudo를 안적어주면 허가 없다고 나올 수도 있다.

sudo apt install python3.8-venv

 

이 후에 다시 가상환경을 생성해주면 된다.

python -m venv virtual_environ_name