forked from santoshphilip/eppy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathp3.txt
96 lines (79 loc) · 1.88 KB
/
p3.txt
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
2015-07-05
----------
- pydot3k works for pydot in python3
- changed line in loopdiagram.py - line 154
- justnodes.sort()
- to
- justnodes = sorted(justnodes, key=lambda x: str(x[0]))
2015-02-22
----------
https://code.google.com/p/pydot/downloads/detail?name=pydot-1.0.28.zip
pyvenv ~/venvs/eppy3
source ~/venvs/eppy3/bin/activate
2to3 -w ./
python3 setup.py install # -> did not work
2015-02-01
----------
# run from ./postp2
in each folder run:
sh 2to3sh.sh
2015-02-01
----------
pyvenv ~/venvs/eppy3
source ~/venvs/eppy3/bin/activate
pip install
bunch>=1.0
beautifulsoup4>=4.2.1
numpy>=1.7.1
pydot>1.0 -> FAILED
pyparsing==1.5.7 -> FAILED
pytest>=2.3.5
2to3 -wno p3 merge.py
this will 2to3 merge.py and put it in folder p3
# run from ./postp2
2to3 -Wno ../p3 ./
# run from ./p3
2to3 -Wno ./ ../postp2
2014-03-25
----------
notes from mecho_postprocessing2
# none of the stuff below worked.
# install homebrew:
# <http://brew.sh>
# ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
#
# install pyenv:
# <https://github.com/yyuu/pyenv#homebrew-on-mac-os-x>
# $ brew update
# $ brew install pyenv
#
# Administrators-iMac:~ santosh$ pyenv versions
# * system (set by /Users/santosh/.pyenv/version)
#
#
# ls -l /usr/local/bin/py*
# /usr/local/bin/python3 -> ../../../Library/Frameworks/Python.framework/Versions/3.4/bin/python3
#
# mkvirtualenv -p /usr/local/bin/python3.4 pyth3
# virtualenv pyth3 --python=/usr/local/bin/python3.4
#
#
# export VIRTUALENV_PYTHON=/usr/local/bin/python3.4
#
# pyvenv temp1
# source temp1/bin/activate
# python
#
#
# pyvenv .temp1
# source .temp1/bin/activate
# python
install python3 -> then make the virtual env as shown
pyvenv ~/venvs/mpss2
source ~/venvs/mpss2/bin/activate
2to3 -wno p3 merge.py
this will 2to3 merge.py and put it in folder p3
# run from ./postp2
2to3 -Wno ../p3 ./
# run from ./p3
2to3 -Wno ./ ../postp2