Avalon-Benchmark / avalon

A 3D video game environment and benchmark designed from scratch for reinforcement learning research
https://generallyintelligent.com/avalon/
GNU General Public License v3.0
175 stars 16 forks source link

Fix pip install tutorial for zsh (macOS) #3

Closed Elijas closed 1 year ago

Elijas commented 1 year ago

The tutorial code fails when run on zsh:

$ pip install -e .[extras]  
zsh: no matches found: .[extras]

Proposed fix

$ pip install -e ".[extras]"  

which results in a successful installation.

Elijas commented 1 year ago

Closing due to the documentation no longer instructing local installation.