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
I am running the following command to install voila-vuetify in development mode (-e) of a local clone of the repository on a linux machine:
pip install --user -e .
This however fails because setup.py is trying to write into /usr/share/jupyter without root permission. With a print command added behind the line that checks for the --user flag,
if '--user' in sys.prefix: # TODO: is there a better way to find out?
I found out that this expression fails to correctly detect the --user flag. The user_dirfunction contains two more errors as the env and home variable are not defined.
The text was updated successfully, but these errors were encountered:
I am running the following command to install
voila-vuetify
in development mode (-e
) of a local clone of the repository on a linux machine:This however fails because setup.py is trying to write into
/usr/share/jupyter
without root permission. With a print command added behind the line that checks for the--user flag
,I found out that this expression fails to correctly detect the
--user
flag. Theuser_dir
function contains two more errors as theenv
andhome
variable are not defined.The text was updated successfully, but these errors were encountered: