Non-Root Installation of CUDA NLP by Conda

Non-ROOT users configure a remote CUDA server for a deep learning environment, below is an example of Pytorch. CUDA driver Check the version of CUDA already installed on the server: 1 nvcc -V Showing version 11.4 here, but it doesn’t matter. Next to check the driver version, this relates to the latest CUDA version that we can install in the conda virtual environment. 1 2 3 4 nvidia-smi ### Output ### Driver Version: 535....

2024-03-10    675 words    4 min    Yuesir

Switch Xcode to Compile Unadapted Theos Plugins

Preface Recently, I need to recompile an iOS jailbreak plugin named PassBy, and found that it reported errors frequently on my new device, so I recorded the exploration and solution process below. Since I’m not a professional, and I don’t even know much about iOS development, this is a record of my exploration with the attitude of learning. If there are any mistakes, welcome to criticize and correct in the comment section....

2023-04-24    1015 words    5 min    Yuesir

Brew installing R-Kernel Notebook

Preface My other post describes using Conda installing R kernel Notebook on a Linux remote server, but I’ve found that conda doesn’t handle various dependency conflicts very well, often resulting in installations that don’t I found that conda doesn’t handle dependency conflicts well, which often leads to unsuccessful installations. Later, I also used brew to install it on my macOS system, and found that it was easier and faster, so I summarized the steps....

2023-01-16    2024-03-15    517 words    3 min    Yuesir

Unix terminal installation configuration Oh My Zsh

Introduction What is Oh My Zsh Oh My Zsh is a community-driven command line tool, and as its homepage says, Oh My Zsh is a way of life. It is based on the zsh command line and offers theme configuration, plugin mechanism, and already built-in convenience operations. It gives us a whole new way to use the command line. Oh My Zsh is an extended toolset based on the zsh...

2022-12-07    608 words    2 min    Yuesir

Lightweight docker installation for macOS environment

Preface If you don’t like the “bloat” of the official docker client, like me, and just want a separate and pure docker service without a GUI, or just want to try new things and tinker with new methods, then you are welcome to read this article. Since I am using macOS, there is only one exploration record under Mac. If there are any omissions and errors, please feel free to criticize and point them out in the comment section....

2022-11-05    2023-12-20    746 words    4 min    Yuesir

Conda installing R kernel Notebook

Preface Due to the author’s frequent use of conda to configure the R kernel jupyter notebook on Linux remote servers, some steps are forgotten over time (the main problem is that the same pit will be stepped on differently every time). After summarizing the relevant tutorials and personal experience on the internet, a guide is provided for everyone and future me to refer to. Guide Install Conda To start with an introduction to Conda, Anaconda and some of the connections between them....

2022-10-10    1485 words    7 min    Yuesir