반응형 IT News319 가상환경 연결 python - 32bit 가상환경 (키움 API가 32bit에 최적화, 64bit 사용 시 알수없는 에러 발생 가능성 있음) - Conda 환경변수 등록 ~~~ (자신의 파일경로) (C:\Users\user)\Anaconda3\Scripts (C:\Users\user)\Anaconda3\Library\bin ~~~ - 64bit 설치 시, 32bit로 전환 ~~~ set CONDA_FORCE_32BIT=1 //32bit로 세팅 conda create -n py37_32 python=3.7 anaconda //python 3.7로 py37_32의 가상환경 생성 activate py37_32 //py37_32(가상환경이름) 활성화 ~~~ - VSCode에서 anaconda py37_32 가상환경 연결 ~~~ Ctrl .. IT News 2021. 10. 30. anaconda64-bit에서 32bit 환경 설정 anaconda64-bit에서 32bit 환경 설정 set CONDA_FORCE_32BIT = 1 conda create -n py37_32 python=3.7 anaconda 위와 같이 명령어를 입력하면 아나콘다 설치 경로인 C:\Anaconda3\envs 디렉토리에 py37_32라는 디렉토리가 생성되고 그 안으로 python 3.7 32-bit 버전의 파이썬 인터프리터 환경이 생성됩니다. 이처럼 기존에 시스템에 설치된 파이썬 개발환경외에 추가로 설치한 파이썬 인터프리터를 가상환경이라고합니다. IT News 2021. 10. 7. MySql사용법 MySql사용법 import mysql.connector connection = mysql.connector.connect(user="root", password="", host="127.0.0.1", charset="utf8mb4") connection = mysql.connector.connect(user="root", password="", host="127.0.0.1", charset="utf8mb4") 데이터베이스 생성하거나 삭제 cur.execute("CREATE DATABASE 'all_data'") cur.execute("DROP DATABASE 'all_data'") IT News 2021. 10. 6. AutoCAD 블록을 AutoCAD Plant 3D 사용자 정의 파트 작성 해결 방법: 블록 기반 구성요소를 프로젝트에 통합하는 두 가지 방법, 즉 사양 및 카탈로그를 사용하거나 PLANTCUSTOMPARTS를 사용하여 통합할 수 있습니다. 옵션 1: 블록 기반 구성요소를 카탈로그/사양에 추가합니다. 일반 AutoCAD 3D 모델링으로 3D 구성 요소 생성 BLOCK 명령을 사용하여 AutoCAD 블록으로 저장하십시오. 이름을 붙이다. 삽입 점을 선택하십시오. 블록으로 변환을 선택하십시오. OK를 선택합니다. 명령 행에 PLANTPARTCONVERT 명령을 입력하십시오. 노트 : 이 명령은 AutoCAD Plant 3D에서만 사용할 수 있습니다. AutoCAD 블록을 선택하십시오. 포트를 추가하십시오. 팁 : 오르 토를 ON으로 설정하십시오. 노트 : 액추에이터는 포트가 필요하.. IT News 2021. 10. 3. UI파일을 Python 코드에서 import하는 방법 import sys from PyQt5.QtWidgets import * from PyQt5 import uic # ui 파일을 사용하기 위한 모듈 import #UI파일 연결 코드 UI_class = uic.loadUiType("UI파일이름.ui")[0] class MyWindow(QMainWindow, UI_class) : def __init__(self) : super().__init__() self.setupUi(self) app = QApplication(sys.argv) Window = MyWindow() Window.show() app.exec_() IT News 2021. 10. 3. MySQL 설치 1. MySQL 홈페이지 접속 MySQL url 링크 : https://www.mysql.com/downloads/ MySQL :: MySQL Downloads MySQL Cluster CGE MySQL Cluster is a real-time open source transactional database designed for fast, always-on access to data under high throughput conditions. MySQL Cluster MySQL Cluster Manager Plus, everything in MySQL Enterprise Edition Learn More » C www.mysql.com MSI Installer Download 클릭 ※Download 버튼.. IT News 2021. 10. 1. vcruntime140_1.dll 또는 vcruntime1401.dll오류해결 방법 1. vcruntime140_1.dll 오류해결 https://support.microsoft.com/en-us/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0 The latest supported Visual C++ downloads A subscription to make the most of your time support.microsoft.com 또는 2. vcruntime1401.dll 오류해결 https://www.microsoft.com/ko-kr/download/details.aspx?id=48145 Download Visual Studio 2015용 Visual C++ 재배포 가능 패키지 .. IT News 2021. 9. 22. anaconda3 다운 사이트 anaconda3 다운 사이트 https://www.anaconda.com/products/individual Anaconda | Individual Edition Anaconda's open-source Individual Edition is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com IT News 2021. 9. 22. 최신 Visual Studio 2019 및 구번전 down Visual Studio Older Downloads - 2017, 2015 & Previous Versions (microsoft.com) Visual Studio Older Downloads - 2017, 2015 & Previous Versions Download previous versions of Visual Studio Community, Professional, and Enterprise softwares. Sign into your Visual Studio (MSDN) subscription here. visualstudio.microsoft.com IT News 2021. 9. 22. 오피스2019다운주소 http://officecdn.microsoft.com/pr/492350f6-3a01-4f97-b9c0-c7c6ddf67d60/media/ko-kr/ProPlus2019Retail.img IT News 2021. 9. 20. 윈도우 10 홈과 프로의 차이 윈도우 10 홈과 프로의 차이 IT News 2021. 9. 12. 파이썬 가상환경 만들기 및 제거 1. 가상환경 만들기 conda create -n 가상환경이름 python=버전 ex) conda create -n upbit python=3.8 2. 가상환경 list보기 conda env list 3.가상환경 지우기 conda env remove --n 가상환경이름 IT News 2021. 9. 3. 이전 1 ··· 20 21 22 23 24 25 26 27 다음 💲 추천 글 반응형