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
Copy file name to clipboardExpand all lines: docs/FAQ.md
+212Lines changed: 212 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,218 @@ packages = ["your_package"]
72
72
73
73
For more detailed information about package discovery and configuration, refer to the [official setuptools documentation](https://setuptools.pypa.io/en/latest/userguide/package_discovery.html).
74
74
75
+
### Q: Why am I getting timeouts or "[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed" errors?
76
+
77
+
The UiPath CLI automatically works with your corporate network setup, including proxy servers and security tools like ZScaler, by leveraging your system's native SSL certificate store.
78
+
79
+
#### Proxy Configuration
80
+
81
+
Configure these environment variables to route CLI traffic through your corporate proxy:
> set HTTP_PROXY=http://username:password@proxy.company.com:8080
160
+
> set HTTPS_PROXY=https://username:password@proxy.company.com:8080
161
+
> set NO_PROXY=localhost,127.0.0.1
162
+
> uipath publish
163
+
⠋ Fetching available package feeds...
164
+
✓ Package published successfully!
165
+
```
166
+
167
+
////
168
+
169
+
/// tip
170
+
**For IT Administrators**: Add these environment variables to your Group Policy or system configuration:
171
+
172
+
```bash
173
+
HTTP_PROXY=http://your-proxy.company.com:8080
174
+
HTTPS_PROXY=https://your-proxy.company.com:8080
175
+
NO_PROXY=localhost,127.0.0.1,*.company.com
176
+
```
177
+
///
178
+
179
+
/// warning
180
+
The CLI uses a local HTTP server for the authentication callback. You must **exclude localhost** from your proxy using `NO_PROXY=localhost,127.0.0.1` or authentication will fail.
* Connected to proxy.company.com (192.168.1.100) port 8080
190
+
✓ Connection successful
191
+
192
+
># Test localhost exclusion
193
+
> curl --proxy $HTTP_PROXY http://localhost:8080
194
+
* Bypassing proxy for localhost
195
+
✓ Direct connection to localhost successful
196
+
```
197
+
198
+
#### SSL Certificates
199
+
200
+
The UiPath CLI automatically uses your system's certificate store (Windows Certificate Store, macOS Keychain, Linux ca-certificates). Corporate certificates installed via Group Policy or IT tools will be automatically recognized.
> set SSL_CERT_FILE=C:\certs\company-ca-bundle.pem
277
+
> set REQUESTS_CA_BUNDLE=C:\certs\company-ca-bundle.pem
278
+
> uipath publish
279
+
⠋ Publishing most recent package...
280
+
✓ Package published successfully!
281
+
```
282
+
283
+
////
284
+
285
+
75
286
---
76
287
77
288
*Note: This FAQ will be updated as new information becomes available. If you continue experiencing issues after following these solutions, please contact UiPath support.*
Copy file name to clipboardExpand all lines: pyproject.toml
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[project]
2
2
name = "uipath"
3
-
version = "2.0.73"
3
+
version = "2.0.74"
4
4
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
0 commit comments