일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- ELASTIC
- 차트
- Kafka
- analyzer test
- token filter test
- flask
- API
- high level client
- matplotlib
- 900gle
- Python
- Java
- MySQL
- zip 파일 암호화
- zip 암호화
- plugin
- TensorFlow
- springboot
- docker
- aggregation
- Elasticsearch
- sort
- Mac
- license delete
- 파이썬
- licence delete curl
- aggs
- Test
- License
- query
Archives
- Today
- Total
개발잡부
설치 후 가상환경 만들기 본문
반응형
설치 후 가상환경 만들기 - 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