diff --git a/.gitignore b/.gitignore index 4a587f6..ee50f05 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ .idea ENV -ExampleNotebooks/.ipynb_checkpoints \ No newline at end of file +ExampleNotebooks/.ipynb_checkpoints +*.pyc +__pycache__ +*.egg-info +.log +.vscode diff --git a/ExampleNotebooks/Example.ipynb b/ExampleNotebooks/Example.ipynb index 5f3d079..d312529 100644 --- a/ExampleNotebooks/Example.ipynb +++ b/ExampleNotebooks/Example.ipynb @@ -27,7 +27,7 @@ "metadata": {}, "outputs": [], "source": [ - "%export_states createArchive=True, uploadServer=http://host.docker.internal:8080, archiveName=Your Archive Name " + "%export_states createArchive=True, uploadServer=http://host.docker.internal:8888, archiveName=Your Archive Name " ] } ], diff --git a/README.md b/README.md index 15c01f1..7ebe7b9 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ 1. `pip install wheel` 2. `pip install ipykernel/` 3. `pip install tools/state_capture_magic` -4. `jupyter kernelspec install --user /home/dimuthu/code/iPython-Kerner-Changes/ipykernel/` +4. `jupyter kernelspec install --user ./ipykernel/` 5. `pip install notebook` 6. `jupyter notebook --ip 0.0.0.0 ` diff --git a/tools/state_capture_magic/setup.py b/tools/state_capture_magic/setup.py index 19f140b..ad0def9 100644 --- a/tools/state_capture_magic/setup.py +++ b/tools/state_capture_magic/setup.py @@ -16,4 +16,8 @@ author='Dimuthu Wannpurage', author_email='dwannipu@iu.edu', description='IPython Extension for Cassandra integration', -) \ No newline at end of file + install_requires=[ + 'dill', + 'requests', + ], +)