Dev:PyCharm Setup - pk-hack/CoilSnake GitHub Wiki
PyCharm is a great and free Python IDE that makes CoilSnake development easy. Here's how to set it up.
Clone CoilSnake's git repository
git clone [email protected]:pk-hack/CoilSnake.git
Install PyCharm
- Download and install JetBrains Toolbox here: https://www.jetbrains.com/toolbox-app/
- (Optional) In JetBrains Toolbox, go to Settings > Tools > Disable "Keep previous versions of tools to enable instant rollback" (prevents old versions of tools from taking up hard drive space)
- Open the "Tools" tab in JetBrains Toolbox
- Click the magnifying glass icon and search for PyCharm Community
- Install PyCharm Community
Create a CoilSnake project in PyCharm
- Open PyCharm Community by double clicking on it in JetBrains Toolbox
- Create a new project in PyCharm
- In PyCharm Community, click "New Project"
- In the "New Project" window, click the folder icon on the right of the Location field and choose the location on your computer where you git clone'd CoilSnake
- Click the "Create" button at the bottom-right of the "New Project" window
- A window will pop up. Click the button to confirm that you're creating from existing sources.
- PyCharm will open your new project and take a minute to set everything up.
- In your new PyCharm project, go to PyCharm's menu at the top of the PyCharm window and open
Menu > Settings > Project > Structure
. Mark thecoilsnake
andtests
folder as sources. The window should end up looking like the image below. After you're done, press the OK button at the bottom-right of the window.
Install CoilSnake's dependencies and build its native extensions
- Open the terminal by clicking the "Run" button at the bottom-left of PyCharm:
- Install CoilSnake's dependencies:
- Type
pip install .
into PyCharm's terminal, press Enter, and wait for it to complete.
- Type
- Build the native extensions (for compression/decompression):
- Type
pip install setuptools
into PyCharm's terminal, press Enter, and wait for it to complete. - Type
python setup.py build_ext --inplace clean
into PyCharm's terminal, press Enter, and wait for it to complete.
- Type
Run your CoilSnake project
- In the left "Project" pane, find the
gui.py
file in thescript
folder. - Right click on it, then click "Run 'gui'"
- After you've successfully run
gui.py
for the first time, you can more quickly do it by running it from the top of the PyCharm window: