Skip to content

Commit 0eafe91

Browse files
authored
Update README.md
1 parent 00fb4c7 commit 0eafe91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ Complete API documentation can be found here: [Gymie-Client API](https://jscript
7575
In the [previous section](#how-to-run-the-client-and-server) we already saw how to import gymie, connect to the server, instantiate an environment and call a few API methods. Let's go a bit more in detail with a complete example of a random agent interacting with an environment:
7676

7777
```ts
78-
import Gymie from '../dist'
79-
import { Continuous, Discrete } from '../dist/Env'
78+
import Gymie from 'gymie'
79+
import { Continuous, Discrete } from 'gymie/Env'
8080
import {
8181
ConnectFailed,
8282
NoConnected,
8383
ConnectionError,
8484
ConnectionClosed
85-
} from '../dist/errors'
85+
} from 'gymie/errors'
8686

8787
const wsApi = 'http://0.0.0.0:5000/gym'
8888
const envId = 'LunarLander-v2'

0 commit comments

Comments
 (0)