반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

설치 후 가상환경 만들기 본문

카테고리 없음

설치 후 가상환경 만들기

닉의네임 2024. 5. 21. 14:56
반응형

설치 후 가상환경 만들기 - 3.7은 없어짐

conda create --name doo python='3.9'

 

가상환경 접속 후 세팅

pip install 패키지명 하면 안됨 워닝 겁나 뜨면서 설치안됨 관련 이슈

 

강제패키지 설치가 있으나..

언제 하나씩 다하나..

conda install -c conda-forge numpy

이렇게 하지 많고 인증서 체크를 우회해야함

 

pip install --trusted-host http://pypi.org --trusted-host http://pypi.python.org --trusted-host=files.pythonhosted.org 패키지명

 

pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org -r require.txt

pip install --trusted-host http://pypi.org --trusted-host http://pypi.python.org --trusted-host=files.pythonhosted.org 패키지명



pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org -r require.txt

 

반응형
Comments