electrumx icon indicating copy to clipboard operation
electrumx copied to clipboard

Doing a pip install in root folder of spesmilo/electrumx will install previous upstream 1.14.0

Open gits7r opened this issue 4 years ago • 3 comments

Inside spesmilo/electrumx (latest git master branch) if you do a pip3 -m pip install * will install ex 1.14.0 (previous upstream release) instead of spesmilo/electrumx 1.16.0 -- is this expected?

gits7r avatar Mar 03 '21 19:03 gits7r

pip3 -m pip install *

Uhm... do you mean python3 -m pip install . ?

Try running

python3 -m pip uninstall electrumx
python3 -m pip uninstall e-x
python3 -m pip install .

Maybe show some terminal output.

SomberNight avatar Mar 03 '21 19:03 SomberNight

Yes, sorry, I meant python3 -m pip install *

I have run python3 -m pip uninstall electrumx and python3 setup.py install and it installed the correct package. But python3 -m pip install * will not install the correct one.

gits7r avatar Mar 03 '21 19:03 gits7r

In my case I'm using python3.7 rather than python3, so the update recipe is:

  python3.7 -m pip uninstall electrumx
  python3.7 -m pip install .

I was previously using this, which kept me stuck on 1.15.0:

   python3.7 setup.py install

This is un Ubuntu 18.04, which has python3 pointing to python 3.6.9 and python3.7 is separately installed.

shsmith avatar Oct 24 '21 20:10 shsmith