https://github.com/rizinorg/cutter-jupyter
Jupyter Plugin for Cutter
https://github.com/rizinorg/cutter-jupyter
cutter jupyter
Last synced: 3 months ago
JSON representation
Jupyter Plugin for Cutter
- Host: GitHub
- URL: https://github.com/rizinorg/cutter-jupyter
- Owner: rizinorg
- License: gpl-3.0
- Created: 2019-03-25T11:31:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-29T13:32:27.000Z (over 5 years ago)
- Last Synced: 2025-04-19T08:30:13.564Z (3 months ago)
- Topics: cutter, jupyter
- Language: Python
- Size: 165 KB
- Stars: 26
- Watchers: 12
- Forks: 5
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Jupyter Plugin for Cutter

## Installation
First, install jupyter, so the Python interpreter used by Cutter can find it:
```
pip install jupyter
```Then, check the plugins path of Cutter by looking into Edit -> Preferences -> Plugins
and copy or symlink the subdirectory `cutter_jupyter` from this repository into the `plugins/python` subdirectory.## MacOS installation pre-requirements:
Install exact version of Python: 3.6.8
```
brew install pyenv
pyenv install 3.6.8
```This will install python to /Users/USER/.pyenv/versions/3.6.8/bin/python3
Next, we need to downgrade SSL lib to version 1.0.0 with the following commands:
```
brew uninstall openssl
brew uninstall openssl
brew install https://github.com/tebelorg/Tump/releases/download/v1.0.0/openssl.rb
```
Yes, uninstall twice.At this moment we are ready to install Jupyter, so the Python interpreter used by Cutter can find it:
```
/Users/USER/.pyenv/versions/3.6.8/bin/python3 -m pip install jupyter
```