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
Just in case anyone needs this, this is how I compiled and installed simstring on Ubuntu 20.10. I am sure the pull request #26 is solving the same thing, but I did not notice it until it was too late. So for the record, this "worked for me" (tm)
make sure you have python-dev and swig installed from your package manager
./autogen.sh
./configure
make
cd swig/python
./prepare.sh --swig
pip3 install --upgrade pip setuptools wheel
Now replace setup.py with the version below and then you can:
python3 setup.py bdist_wheel
This gets you a wheel file under dist which you can pip-install as you wish
Just in case anyone needs this, this is how I compiled and installed simstring on Ubuntu 20.10. I am sure the pull request #26 is solving the same thing, but I did not notice it until it was too late. So for the record, this "worked for me" (tm)
Now replace setup.py with the version below and then you can:
This gets you a wheel file under dist which you can pip-install as you wish
Here is a test in python
And here is the corrected setup.py:
The text was updated successfully, but these errors were encountered: