conda 5

[오류해결] CondaVerificationError: The package for setuptools located at ~~~ appears to be corrupted. The path ~~~ specified in the package manifest cannot be found.

# 오류 상황CondaVerificationError: The package for setuptools located at ~~~appears to be corrupted. The path ~~~specified in the package manifest cannot be found. Conda create을 하려니 위의 에러 메세지가 뜸 참고글을 확인해보니 이전에 사용했던 남은 찌꺼기들로 인한 문제로 보인다고 한다.  # 오류 해결불필요한 파일 제거 conda clean --all    Referencehttps://jangjy.tistory.com/377 CondaVerificationError를 해결하자conda 를 이용하여 특정 패키지를 설치를 시도하던 중 아래와 같은 에러를 만났다. ``` Co..

[오류해결] CondaValueError: Malformed version string '~': invalid character(s).

CUDA 까는 거 따라하다가 이상한 설정 해버려서 conda 명령어가 하나도 안들었음... 해결법 C:\Users\pc 경로로 가서 .condarc 파일을 연다 defaults 만 빼고 지워준다. 가상환경 문제인 줄 알고 다 지웠는데 너무 화난다 😂😂😂😂.... 참고 : https://stackoverflow.com/questions/56084960/condavalueerror-malformed-version-string-invalid-characters CondaValueError: Malformed version string '~': invalid character(s) I'm getting a Malformed version string error with my conda. I have no ide..

[오류 해결] TypeError: '_AxesStack' object is not callable

[참고링크] https://stackoverflow.com/questions/74189581/axesstack-object-is-not-callable-while-using-networkx-to-plot '_AxesStack' object is not callable while using networkx to plot Following one of online tutorials I found it difficult to run even a small piece of paragraph. Here is what I want to write into the graph: a Directed acyclic unweighted matrix into the graph, howe... stackoverflow.com ..

[Python/conda] Networkx-metis 설치하기

[참고 링크] https://anaconda.org/conda-forge/networkx-metis 설치 방법 conda install -c "conda-forge/label/cf202003" networkx-metis 또는 conda install -c conda-forge networkx-metis 참고로 나는 첫 번째 방법으로 설치했다. 두 번째 방법은 왜인진 모르지만 계속 안됐음... 저거 설치 못해서 LargeGNN 코드 못 돌려봤는데 다시 시도 해봐야겠다. 겪은 오류 Preparing transaction: done Verifying transaction: done Executing transaction: failed ERROR conda.core.link:_execute(502): An er..

인공지능(AI) 기초 다지기: Module and Project

Module and Project 🔗 강의 바로가기 📖 강의 소개 이번 강의에서는 파이썬 프로젝트의 기본이 되는 모듈과 패키지, 그리고 프로젝트의 개념에 대해서 배웁니다. 우리는 앞서 파이썬에서 제공하는 여러가지 모듈들을 사용했습니다. 이러한 모듈과 패키지를 구성하고, 실제로 다른 개발자가 만든 모듈을 사용하는 방법까지 이 챕터에서 다루게 됩니다. 내용은 많이 어렵지는 않지만, 알면 여러모로 도움되는 내용이니 많은 연습을 하고 넘어가면 좋겠습니다. 파이썬은 대부분의 라이브러리가 이미 다른 사용자에 의해 이미 구현되어있다. 남이 만든 프로그램 쓰는 법 👉 모듈과 패키지 1. 모듈 Module 🔎 overview 어떤 대상의 부분 혹은 조각 프로그램에서는 작은 프로그램 조각들, 모듈들을 모아서 하나의 큰 프..

📚 STUDY/AI 2022.08.02