RotBotSlicer / Transform

Algorithm for 3D printer with new kinematics
GNU General Public License v3.0
238 stars 49 forks source link

Prerequisites missing #4

Closed Rayal closed 1 year ago

Rayal commented 1 year ago

Hi! I tried to use the script to try out the conical slicing and noticed that there is no requirements.txt file.

There is also no info on the python version being used.

I assumed python3.10 and tried installing stl with pip (pip install stl) but this did not work.

RotBotSlicer commented 1 year ago

Hi I also use Python 3.10 and for me it works well. I can not help you with installing stl. Sorry...

Regards

Rayal commented 1 year ago

I found out that you're using the numpy-stl library.

Please consider adding a requirements.txt file: pip freeze > requirements.txt

I believe the necessary contents are:

numpy==1.23.4
numpy-stl==2.17.1

It makes it easier to import your code: pip install -r requirements.txt

sxiii commented 1 year ago

Would be nice also see this in documentation @RotBotSlicer as this is something I stumbled upon as well