-
Notifications
You must be signed in to change notification settings - Fork 53
Update README.md #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Update README.md #21
Conversation
Make it a bit clearer on how to install especially on Linux
Describe that flow rate should be adjusted.
|
Hi @wernight - I like some of the changes you suggested, but I am worried about others. The Mac/Windows Examples: Suggesting ~/ is nice, because will work with whatever user they have. 👍 But I don't want to encourage people to have the script in their "Download" folder, where they can later empty without realizing. That's why I created hypothetical examples, it's to make people decide "where they should save their script"... Does it make sense? Right now I am finishing an error_log to help people on reporting problems, if they happen. Tomorrow I'll have a look again on your suggestions for the README. |
|
Hi all!
... and I don't understand the complicated path to python3 - it should already be installed on all Main-Linuxes in the same place. ... just my 2 cents ... |
|
Downloads folder makes it easy to get started. Some users then may put it in ~/opt/ or other locations. Maybe next to their slicer. There is no standard for such scripts. I also think most Linux users would understand and adapt. |
babyhuey
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixing typos
| ### **Mac/Linux Examples 🍏 🐧** | ||
| - CPython (installed globally):<br> | ||
| ```/usr/local/bin/python3 /Volumes/3DPrinting/Scripts/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1;``` | ||
| ```python3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ```python3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` | |
| ```python3 ~/Downloads/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` |
| ```python3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` | ||
| - CPython (installed locally):<br> | ||
| ```/Users/YourName/.pyenv/shims/python3 /Volumes/3DPrinting/Scripts/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1;``` | ||
| ```~/.pyenv/shims/python3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ```~/.pyenv/shims/python3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` | |
| ```~/.pyenv/shims/python3 ~/Downloads/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` |
| ```~/.pyenv/shims/python3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` | ||
| - PyPy3 (installed globally):<br> | ||
| ```/usr/local/bin/pypy3 /Volumes/3DPrinting/Scripts/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1;``` | ||
| ```pypy3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ```pypy3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` | |
| ```pypy3 ~/Downloads/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` |
| ```pypy3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` | ||
| - PyPy3 (installed locally):<br> | ||
| ```/Users/YourName/.pyenv/versions/pypy3/bin/pypy3 /Volumes/3DPrinting/Scripts/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1;``` | ||
| ```~/.pyenv/versions/pypy3/bin/pypy3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ```~/.pyenv/versions/pypy3/bin/pypy3 ~/Downlaods/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` | |
| ```~/.pyenv/versions/pypy3/bin/pypy3 ~/Downloads/bricklayers.py -startAtLayer 3 -extrusionMultiplier 1.05 -enabled 1``` |
Make it a bit clearer on how to install especially on Linux, and hints at flow rate adjustment.