$ python3 -m venv local
$ source local/bin/active
$ pip install poetry
$ cd /local/git/clone/of/etherpump/
$ poetry install
$ cd /to/any/folder
$ poetry run etherdump
Maybe i figured it out:
$ python3 -m venv local
$ source local/bin/active
$ pip install poetry
$ cd /local/git/clone/of/etherpump/
$ poetry install
$ cd /to/any/folder
$ poetry run etherdump
Hmm it seems to be a bit more simpe, as poetry is making an virtual enviroment already ...
$ cd /local/git/clone/of/etherpump/
$ poetry install
$ poetry run etherpump
Hmm it seems to be a bit more simpe, as poetry is making an virtual enviroment already ...
$ cd /local/git/clone/of/etherpump/
$ poetry install
$ poetry run etherpump
Just to note we managed to get @ccl and @JoanaChicau both locally installed using poetry without many issues. We saw that if you have a virtual environment already setup it is confusing, so it can be useful to just delete it and start from scratch when running poetry install. Otherwise seems to work.
Just to note we managed to get @ccl and @JoanaChicau both locally installed using poetry without many issues. We saw that if you have a virtual environment already setup it is confusing, so it can be useful to just delete it and start from scratch when running `poetry install`. Otherwise seems to work.
There is no setup.py ... so i feel a bit lost. Maybe it is related to the new way of building the package, since we switched to poetry?
Maybe i figured it out:
$ python3 -m venv local
$ source local/bin/active
$ pip install poetry
$ cd /local/git/clone/of/etherpump/
$ poetry install
$ cd /to/any/folder
$ poetry run etherdump
Hmm it seems to be a bit more simpe, as poetry is making an virtual enviroment already ...
$ cd /local/git/clone/of/etherpump/
$ poetry install
$ poetry run etherpump
Just to note we managed to get @ccl and @JoanaChicau both locally installed using poetry without many issues. We saw that if you have a virtual environment already setup it is confusing, so it can be useful to just delete it and start from scratch when running
poetry install
. Otherwise seems to work.