일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 그래프 질의언어
- SQL
- Cypher
- 인공지능
- DeepLearning
- graph database
- Neo4j
- r
- TensorFlow
- Graph Ecosystem
- RDD
- 딥러닝
- 그래프 데이터베이스
- 그래프 에코시스템
- 그래프
- GraphX
- graph
- GSQL
- SparkML
- Graph Tech
- Python
- TigerGraph
- 연합학습
- 분산 병렬 처리
- RStudio
- 빅데이터
- BigData
- GDB
- Federated Learning
- spark
- 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 |