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
After creating the environment as detailed here starting the Jupyter server is throwing an error.
How to Reproduce
Create the environment as described here. (Foundations of Private Computation course, Lesson 1, Duet Exercises: Setup)
On running jupyter notebook below error is encountered. ImportError: cannot import name 'soft_unicode' from 'markupsafe' (/home/rajesh/Documents/openmined/syft-env/lib/python3.8/site-packages/markupsafe/__init__.py)
Expected Behavior
We should be able to start the Jupyter server on running jupyter notebook
Screenshots
System Information
OS: Linux
OS Version: Ubuntu 20.10
Language Version: Python 3.8
Package Manager Version: venv
Additional Context
It's caused because the latest releases of markupsafe have removedsoft_unicode. Downgrading this library to 2.0.1 solves the issue.
The text was updated successfully, but these errors were encountered:
Description
After creating the environment as detailed here starting the Jupyter server is throwing an error.
How to Reproduce
Create the environment as described here. (Foundations of Private Computation course, Lesson 1, Duet Exercises: Setup)
On running
jupyter notebook
below error is encountered.ImportError: cannot import name 'soft_unicode' from 'markupsafe' (/home/rajesh/Documents/openmined/syft-env/lib/python3.8/site-packages/markupsafe/__init__.py)
Expected Behavior
We should be able to start the Jupyter server on running
jupyter notebook
Screenshots
System Information
Additional Context
It's caused because the latest releases of
markupsafe
have removedsoft_unicode
. Downgrading this library to2.0.1
solves the issue.The text was updated successfully, but these errors were encountered: