elephantrobotics / pymycobot

This is a python API for ElephantRobotics product.
MIT License
109 stars 54 forks source link

README: Encourage use of virtualenv #15

Closed eacousineau closed 3 years ago

eacousineau commented 3 years ago

Relates https://github.com/zlj-zz/minimycobotflasher/issues/1 https://github.com/elephantrobotics/mycobot_ros/issues/17

apockill commented 3 years ago

Hey @eacousineau do you think that it would overcomplicate things to recommend poetry for users of this repo?

The instructions could be simplified to:

# Install Poetry
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -

# Install project dependencies
poetry install

and poetry would handle creation and entry of the venv.


Personally I think it's a bit overkill since there's only one dependency in this project, but I thought I'd mention the option.

eacousineau commented 2 years ago

Howdy @apockill,

Yeah, I think in this case, it'd be overkill since this usage is relatively simple and this project doesn't directly use poetry for dependency declarations / management. But thanks for the suggestion!