monchin
monchin
Hello, thank you for your example. @bryancatanzaro @LeviBarnes First, I ran `make`, and everything went well. Then, I want to create data on CPU, so I changed your code in...
Update: I added anaconda to environment path, and this time `ZeroMQ` is found, but another error occurred. ``` CMake Error at tests/CMakeLists.txt:51 (catch_discover_tests): Unknown CMake command "catch_discover_tests". ``` -------------------------------------------------------------------------------------------------------------- Hello,...
I used conda to install the dashboard, and wanted to set layout in Grid Mode. But it is strange that all cells huddled together in a small cell, and I...
Make it easier when using `loguru` in spawn multiprocessing environment
Hi, I have read the document and have known that on windows, if I want to use multirprocessing, I need ```python logger.remove() logger.add("file.log", enqueue=True) ``` But in this way, I...
I used jupyter notebook and followed the tutorial, when I input ``` tsample.view_interactively(backend='webagg') ``` but the page `127.0.0.1:8080` shows `500: Internal Server Error` and nothing else. Then I looked the...
The tutorial on [How to install](https://eyurtsev.github.io/FlowCytometryTools/install.html) just shows `pip install`, and I'm wondering if there is a way to conda install it. I googled but didn't find it.
Hello, I'm using `anyio` like this: ```python # test.py from anyio import to_process import anyio def cpu_bound_func(): a = 0 for i in range(1000000): a += i return a async...
I found that when `table=True` is set, pydantic becomes invalid for usage like `hero = Hero(name="Deadpond", secret_name="Dive Wilson", age="test")`. As [the document](https://sqlmodel.tiangolo.com/features/#based-on-pydantic) says `you get all of Pydantic's features, including...