https://github.com/cazala/point-e
Text to 3D mesh using OpenAI's Point-E
https://github.com/cazala/point-e
Last synced: 26 days ago
JSON representation
Text to 3D mesh using OpenAI's Point-E
- Host: GitHub
- URL: https://github.com/cazala/point-e
- Owner: cazala
- License: mit
- Created: 2023-05-17T18:51:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-18T20:02:37.000Z (over 2 years ago)
- Last Synced: 2024-12-29T12:28:18.927Z (about 1 year ago)
- Language: Python
- Size: 8.33 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Install
```
python3 -m pip install -e
```
In case it doesn't work, on Windows you can try:
```
python setup.py
```
# Run
```
python3 text2mesh.py
```
# Troubleshoot
```
ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with LibreSSL 2.8.3
```
Install an older version of urllib3: `pip install urllib3==1.26.6`
# Using the Dedicated Graphic Card
1. You need to install the CUDA toolkit and drivers: https://developer.nvidia.com/cuda-downloads
2. Uninstall the `torch` version installed in `Install` section, and go here https://pytorch.org/get-started/locally/, select the proper OS and requirement, and run the command resulted.