본문 바로가기

백엔드287

pip install *.whl is not a supported wheel on this platform whl 파일을 설치하려는데 오류가 나면서 설치가 되지 않았다. 다음 명령어를 사용해서 pip 이 지원되는 버전을 확인하면된다. import wheel.pep425tags print(wheel.pep425tags.get_supported()) 위에서 해당되는 버전을 확인 후 아래에서 파일을 다운받아 사용하면 된다. https://www.lfd.uci.edu/~gohlke/pythonlibs/#jpype 2022. 1. 7.
파이썬 설치 경로 찾기 먼저 파이썬 명령어를 칠 수 있도록 한다. python 아래 코드를 작성해서 보면 파이썬 설치경로를 확인할 수 있다. import sys sys.executable 2022. 1. 6.
[python] Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-6g2r1v6o/gensim/ Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-6g2r1v6o/gensim/ pip install -r requirements.txt 위의 명령어로 설치된 패키지 목록인 requirements.txt 을 생성하는 도중 다음과 같은 에러가 나왔다. setuptools 버전이 낮아서 발생한 오류로 pip3 install --upgrade setuptools 로 해결했다. sudo -H pip install --upgrade --ignore-installed pip setuptools apt-get install -y python3.6-dev libmysqlclient-dev 2022. 1. 6.
[node] nodemon 설치하기 npm install nodemon --save-dev 노드몬을 설치하고 아래 명령어로 서버를 실행시킬 수 있다. yarn dev npm run dev 2022. 1. 4.
node cannot find module 요즘에는 npm이 node_modules 디렉토리를 수정할 떄 자동으로 생성되는 pakage-lock.json 파일을 사용할 수 있는데 node_modules의 정확한 버전을 추적하기 때문에 pakage.json 대신에 사용한다. node module 을 지우고 다시 설치했다. rm -rf node_modules npm install @types/node --save-dev 2022. 1. 3.
Whitelabel Error Page 프로젝트를 배포했는데 다음과 같이 페이지가 안나왔다. 내가 처음 작성한 코드이다. 그림처럼 path 를 설정하면 로컬에서 확인할때는 결과가 나온다. 하지만 배포하고 나면 위의 사진처럼 html파일을 찾지 못한다. 다음과 같은 에러가 나지 않게 하기 위해선 . 으로 경로를 지정해주어야한다. 아래 이미지는 css 폴더 경로이다. 2021. 12. 27.