You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,22 @@ Requirements:
40
40
41
41
To build, run `make pex` from the command line in the main repo directory.
42
42
43
+
## Build Instructions for local execution and debugging on Windows
44
+
45
+
First, there are several projects that do not have good 64 bit builds for Windows platforms. These are enum34, python_ldap, and pyYaml. Acceptable builds are in the misc/build/Win64 folder and these can be used directly. You can also check http://www.lfd.uci.edu/~gohlke/pythonlibs/
The requirements will usually be loaded into C:\Python27\lib\site-packages if C:\Python27 is your install directory and you aren't specifying any options that send things elsewhere.
53
+
54
+
To set up PyCharm for debugging,
55
+
1. Make sure you are using 64 bit python interpreter. File Settings Project Interpreter
56
+
2. Make sure interprter isn't overridden in run configuration
57
+
3. Set up a run configuration based on Python that references the user_sync\app.py file as the script, and has the command line parameters you want to test with (e.g. --users file test.csv). Working directory works best as the folder with your config files.
0 commit comments