일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- spark
- Python
- 그래프 질의언어
- 딥러닝
- 그래프 에코시스템
- GraphX
- 분산 병렬 처리
- TensorFlow
- graph database
- SQL
- 빅데이터
- BigData
- Federated Learning
- 인공지능
- DeepLearning
- Graph Tech
- RStudio
- RDD
- 그래프 데이터베이스
- Neo4j
- Graph Ecosystem
- graph
- Cypher
- GSQL
- 연합학습
- TigerGraph
- SparkML
- 그래프
- r
- GDB
- Today
- Total
Hee'World
module 불러오기 본문
임의로 만들어진 임의의 디렉토리에 저장된 Python module을 불러오는 방법
1. sys모듈에 path추가 하여 불러오기
>> import sys
>> sys.path
['',
'C:\\Python34\\Scripts\\ipython.exe',
'C:\\Windows\\system32\\python34.zip',
'C:\\Python34\\DLLs',
'C:\\Python34\\lib',
'C:\\Python34',
'C:\\Python34\\lib\\site-packages',
'C:\\Python34\\lib\\site-packages\\IPython\\extensions',
'C:\\Users\\JeonJongHee\\.ipython']
>> sys.path.append("C:/Python/myPythonmodules") >> sys.path
['',
'C:\\Python34\\Scripts\\ipython.exe',
'C:\\Windows\\system32\\python34.zip',
'C:\\Python34\\DLLs',
'C:\\Python34\\lib',
'C:\\Python34',
'C:\\Python34\\lib\\site-packages',
'C:\\Python34\\lib\\site-packages\\IPython\\extensions',
'C:\\Users\\JeonJongHee\\.ipython',
'C:\\Python\\myPythonmodules']
>> import Mymodules
>> Mymodules.test()
2. PYTHONPATH 환경변수 설정
C:\Users\home>set PYTHONPATH=C:\Python\Mymodules C:\Users\home>c:\Python34\python.exe Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 24 2015, 22:44:40) … Type "help", "copyright", "credits" or "license" for more information. >>> import mod2 >>> print(mod2.sum(3,4)) 7
- 참고 : https://wikidocs.net/29
'Programming > Python' 카테고리의 다른 글
TensorFlow 설치 (0) | 2016.06.07 |
---|---|
OpenCV 패키지 설치 [Windows] (0) | 2016.06.07 |
머신러닝 인 액션 2.2.2 예제 에러 (0) | 2016.04.24 |
[펌]데이터 분석을 위한 파이썬 라이브러리 (0) | 2014.10.20 |
IOError: [Errno 22] invalid mode('r') or filename: [해결방법] (0) | 2014.10.20 |