Skip to content

Commit 3fa734f

Browse files
committed
install&HelloWorld
1 parent 113f9da commit 3fa734f

File tree

5 files changed

+51
-1
lines changed

5 files changed

+51
-1
lines changed

.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>python_mining</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.python.pydev.PyDevBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.python.pydev.pythonNature</nature>
16+
</natures>
17+
</projectDescription>

.pydevproject

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<?eclipse-pydev version="1.0"?><pydev_project>
3+
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
4+
<path>/${PROJECT_DIR_NAME}</path>
5+
</pydev_pathproperty>
6+
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python interpreter</pydev_property>
7+
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
8+
</pydev_project>

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,18 @@
1-
# python-mining
1+
# python_mining
2+
##use eclipse
3+
install pydev from eclipse marketplace
4+
set pydev(python interpreter) at eclipse
5+
Hello world
6+
##upgrade pip,install mining packages
7+
python -m pip install --upgrade pip
8+
python -m pip install numpy
9+
python -m pip install scipy
10+
python -m pip install matplotlib
11+
python -m pip install pandas
12+
python -m pip install scikit-learn
13+
python -m pip install statsmodels
14+
python -m pip install gensim
15+
when errors happen at windows,maybe some VC++ compile tools are needed.can use whl files here: https://www.lfd.uci.edu/%7Egohlke/pythonlibs/
16+
17+
18+
python -m pip install e:/download/statsmodels-0.8.0-cp36-cp36m-win32.whl

hello/HelloWorld.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
'''
2+
Created on 2018/03/25
3+
4+
@author: syuu
5+
'''
6+
7+
if __name__ == '__main__':
8+
print("Hello World")

hello/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)