dont know why whenever i run this chunk of code it always gives me this error
…
----> [7](file:///C:/Users/Lenovo/AppData/Local/Programs/Python/Python312/Lib/site-packages/helper/unix.py:7) import grp [8](file:///C:/Users/Lenovo/AppData/Local/Programs/Python/Python312/Lib/site-packages/helper/unix.py:8) import logging [9](file:///C:/Users/Lenovo/AppData/Local/Programs/Python/Python312/Lib/site-packages/helper/unix.py:9) import os ModuleNotFoundError: No module named ‘grp’
Latest one I did uninstall and reinstalled it plus also checked its path
Name: together
Version: 1.4.6
Summary: Python client for Together’s Cloud Platform!
Home-page:
Author: Together AI
Author-email: support@together.ai
License: Apache-2.0
Well, if the Jupyter Notebook is running in the cloud environment, the Python code will be running on a remote server, not on your Windows machine, and the remote server will probably be running a Linux environment and thus the unix.py will make sense on the remote server. But it won’t make sense on your local machine.
Incidentally, if you run !uname -a in one of the Notebook cells, you will get a string telling you about the server’s system.
Now, if you want to run the Notebook locally … I don’t know, how did you install the elements needed? (I have not yet attempted to do any of that, farthest I have got is to run programs locally in PyCharm)
Hi,
For running on local Windows environment just download the helper.py file and import it on the notebook (already in the Lesson*.ipynb code).
To download the file, follow the second cell info "Access the requirements.txt file… "