You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 6, 2023. It is now read-only.
*[Script Guide](scripts.md) for creating and using startup scripts
17
17
18
+
## Release Notes for v0.1.7
19
+
20
+
#### New features
21
+
* New states on returned machine objects: starting, stopping, restarting, serviceready, and upgrading
22
+
* Ability to wait on state serviceready when calling machines waitfor method
23
+
* New property on returned machine objects: updatesPending
24
+
* New releasePublicIp option on machines destroy method
25
+
26
+
#### Fixes
27
+
* Fix for jobs completing too quickly could cause jobs create output to hang
28
+
* Minor doc fixes
29
+
18
30
## Release Notes for v0.1.6
19
31
20
32
#### New Features
21
-
* Pre-built binaries are now available for [Windows](https://s3.amazonaws.com/paperspace-node/v0.1.6/win/paperspace.exe), [Mac](https://s3.amazonaws.com/paperspace-node/v0.1.6/mac/paperspace), and [Linux](https://s3.amazonaws.com/paperspace-node/v0.1.6/linux/paperspace). These binaries enable you to run the paperspace-node command line tool without having to install Nodejs or any additional node modules.
33
+
* Pre-built binaries are now available for Windows, Mac, and Linux. These binaries enable you to run the paperspace-node command line tool without having to install Nodejs or any additional node modules.
22
34
* New methods for early access to jobs. Please contact hello@paperspace.com for more information.
23
35
24
36
#### Breaking Changes
@@ -97,15 +109,25 @@ Previously Node 4.2.3 or later was required, but that version of Node will soon
97
109
98
110
## Getting started
99
111
100
-
Your system will need [Node.js](https://nodejs.org) v8+ installed. Check that you have a recent enough version by running `node -v` in your terminal. Node.js comes bundled with `npm`, the Node.js package management tool, which you'll use to install this package.
101
-
102
112
### Installation
103
113
104
-
Install the package from npm:
114
+
Option 1: Install the paperspace-node package from npm:
115
+
116
+
For this option your system will need [Node.js](https://nodejs.org) v8+ installed. Check that you have a recent enough version by running `node -v` in your terminal. Node.js comes bundled with `npm`, the Node.js package management tool, which you'll use to install this package. Install the package using the -g option as follows:
105
117
106
118
$ npm install -g paperspace-node
107
119
108
-
The reason we recommend installing it globally is so the `paperspace` command will be available on your command line everywhere on your system. If you only want to make it available within an individual Node.js project, you can install it locally by omitting the `-g` flag.
120
+
The reason we recommend installing it globally is so the `paperspace` command will be available on your command line everywhere on your system. If you only want to make it available only within an individual Node.js project, you can install it locally by omitting the `-g` flag.
121
+
122
+
Option 2: Download the pre-build binary for your plaftorm:
0 commit comments