-
- setup.py
```python
from setuptools import setup
```
- windows 10> cmd
```bash
d:\> ipy setup.py install
```
- Result
```bash
...
c:\program files\Ironpython 3.4\lib\site.py, line 162,…
-
_From @ironpythonbot on December 9, 2014 17:59_
I tried to generate a standalone exe for a tool I have (3 modules) but it
bombs out at startup with:
```
Unhandled Exception: IronPython.Runtime.Exc…
slide updated
3 years ago
-
![image](https://user-images.githubusercontent.com/70139427/229179066-6685f3c0-6b53-4f8f-acd4-03892a8b4ec5.png)
i found this problem.
cant run pyrevit.
why?
-
Unfortunately there's currently no way to switch this from Python code.
What we need to do is expose something in IronPythonConsole.exe which lets you
set PythonCommandLine.MyConsole (currently you…
-
IL2CPP error for method 'IronPython.Runtime.List IronPython.Modules.Builtin::range(IronPython.Runtime.CodeContext,System.Object,System.Object,System.Object)' in assembly '/Users/sekkit/Documents/lacg/…
-
**Task: create a python module containing classes**
- **which can be imported by its name**
- **whose internals are hidden from python**
E.g. **behaves like a built-in StdLib module.**
At the…
-
```
We will be using either IronPython with Visual Studio 2012 or VB.NET.
We can't get the pygame module to work with Ironpython for some reason! :(
We have installed DirectPython which is not telli…
-
### Prerequisites
* [x] Are you running the latest version?
* [x] Are you reporting to the correct repository?
* [x] Did you perform a cursory search?
### Description
So, we have as task getting …
DjArt updated
5 years ago
-
Using Python 2.7:
```python
>>> round(1.15, 1)
1.1
>>> round(2.675, 2)
2.67
```
The reason that these numbers are rounded down, not up like Python 2 generally should do, is that they cannot…
-
当前使用版本:2.0.0-beta.17
开发环境:.net7
场景:服务运行过程中,上传一个包含IAsyncCommand的dll,加载dll
这个时候有什么办法在不重启服务的前提下,AddCommand?