Skip to content

Commit 575d903

Browse files
authored
Update Windows configuration approach
If you use PowerShell (Core) rather than cmd.exe, the `set` command is an alias for "Set-Variable" rather than "set environment variable". Instead of `set`, the `$Env:` approach should be used when setting the CLOUDINARY_URL in PowerShell.
2 parents a3b9a33 + 32be8db commit 575d903

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ Python 3.6 or later. You can install Python from [https://www.python.org/](http
1515
1. To install this package, run: `pip3 install cloudinary-cli`
1616
2. To make all your `cld` commands point to your Cloudinary account, set up your CLOUDINARY\_URL environment variable. For example:
1717
* On Mac or Linux:<br>`export CLOUDINARY_URL=cloudinary://123456789012345:abcdefghijklmnopqrstuvwxyzA@cloud_name`
18-
* On Windows:<br>`set CLOUDINARY_URL=cloudinary://123456789012345:abcdefghijklmnopqrstuvwxyzA@cloud_name`
18+
* On Windows (cmd.exe):<br>`set CLOUDINARY_URL=cloudinary://123456789012345:abcdefghijklmnopqrstuvwxyzA@cloud_name`
19+
* On Windows (PowerShell):<br>`$Env:CLOUDINARY_URL="cloudinary://123456789012345:abcdefghijklmnopqrstuvwxyzA@cloud_name"`
1920

2021
_**Note:** you can copy and paste your account environment variable from the Account Details section of the Dashboard page in the Cloudinary console._
2122

0 commit comments

Comments
 (0)