Is it possible to install Eel by using "conda"?
See original GitHub issueThis eel package looks very great! I want to use this package to construct GUI.
As I checked, there is a install instruction by using pip
. But, in my environment, the administrator prohibit to use pip, in order not to break the environment.
Is is possible to install this package by using “conda”? Or, can I install by using another way?
Issue Analytics
- State:
- Created 3 years ago
- Comments:7
Top Results From Across the Web
Is it possible to install Eel by using "conda"? #372 - GitHub
This eel package looks very great! I want to use this package to construct GUI. As I checked, there is a install instruction...
Read more >Python Eel - :: Anaconda.org
Tool for finding evolutionarily conserved mammalian enhancer elements. Conda · Files · Labels · Badges. License: GPL; Home: https ...
Read more >Eel - PyPI
Eel is a little Python library for making simple Electron-like offline HTML/JS GUI apps, with full access to Python capabilities and libraries. Eel...
Read more >Installing — Eelbrain 0.38.2 documentation
Installing . The recommended way to use Eelbrain is in a separate Conda environment. First, install the Anacond Python distribution.
Read more >Package Recipe 'python-eel' — Bioconda documentation
Installation. With an activated Bioconda channel (see set-up-channels), install with: conda install python-eel. and update with: conda update python-eel.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi
In the end, I could install
eel
by using conda from pypi! Probably this page is fruitful for that purpose.I left the list of command lines which I used.
conda skeleton pypi bottle-websocket
conda build bottle-websocket
conda install --use-local /Users/hogehoge/anaconda3/conda-bld/osx-64/bottle-websocket-0.2.9-py37_0.tar.bz2
conda skeleton pypi Eel --version 0.13.2
conda build eel
conda install --use-local /Users/hogehoge/anaconda3/conda-bld/osx-64/eel-0.13.2-py37_0.tar.bz2
conda install gevent-websocket
Note that the path such as
/Users/hogehoge/anaconda3/conda-bld/osx-64/eel-0.13.2-py37_0.tar.bz2
will depends on your environment. Check the printed lines during installation.I will enjoy your great package! Thanks.
Have you heard of/looked at virtual environments? This should give you the ability to have a single shared user account with separate Python environments so that you can install whatever python packages you want without interfering with other users/projects.