Explore Miniconda3: a simple and flexible Python environment and software package management tool

Miniconda3 installation and configuration notes Foreword Miniconda3 is a lightweight Anaconda distribution that provides a flexible and simplified way to manage Python environments and packages. This article will introduce how to install, configure and manage Miniconda3, as well as use the conda command to manage the environment and software packages. Article directory Miniconda3 installation and […]

[UG\ X secondary development] NXOpen point-to-point moving face (admMoveFaceBuilder), point-to-point copying face (copyFaceBuilder)

//Move the surface from point to point tag_t P2P_move_face(std::vector<tag_t> faces, double pt1[3], double pt2[3]) { if (faces.empty()) { return false; } Session *theSession = Session::GetSession(); Part *workPart(theSession->Parts()->Work()); Part *displayPart(theSession->Parts()->Display()); Features::AdmMoveFace *nullFeatures_AdmMoveFace(NULL); if (!workPart->Preferences()->Modeling()->GetHistoryMode()) { throw NXException::Create(“Create or edit of a Feature was recorded in History Mode but playback is in History-Free Mode.”); } Features::AdmMoveFaceBuilder *admMoveFaceBuilder1; […]

Jmeter tool secondary development

1. JMeter secondary development direction 1. Function development, mainly JMeter function library 2. Plug-in development, generally focusing on sampler development 3. Based on execution engine development, it effectively solves the problem of relatively complex and long-term development of the underlying execution engine in independently developed test platforms or tools. It uses the API of the […]

HTML+CSS, Vue+less+, HTML+less component encapsulation to implement secondary menu switching style running (including all codes)

1. HTML + CSS secondary menu <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″ /> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″ /> <title>Document</title> <link rel=”stylesheet” type=”text/css” href=”nav.css” /> <script src=”bottom.js” defer></script> </head> <body id=”body”> <!–Big frame–> <div class=”box”> <div class=”nav1″> <!–Horizontal navigation bar–> <div id=”logo” class=”logo”> <p><img src=”logo.png” width=”100px” height=”99px” /></p> </div> <ul> <li class=”special”><a href=”#”> HOME</a></li> <li […]

miniconda configuration manual – basic configuration, initialization, management of virtual environments, and package operations

Table of Contents Preface The first step is to install the software. This step cannot be skipped. The second step is to configure the basic miniconda. This step mainly involves modifying the “.condarc” file. The third step is miniconda initialization. This step cannot be skipped. Step 4. Manage the virtual environment Step 5: Use the […]

Install jupyter notebook in Anaconda environment, create shortcuts, add/delete kernels, configure theme colors and toolbars [Update]

Install jupyter notebook, create shortcuts, add/remove kernels, configure theme colors and toolbars in Anaconda environment Tip: This article is a record of a series of successful installation processes such as Anaconda + cuda + cudnn + TensorFlow + pytorch + jupyter notebook. Some steps have version number requirements, such as TensorFlow and cuda + cudnn. […]

Remote Sensing Secondary Development Language IDL – Textbook Example

Directory of series articles For example: Chapter 1 Article directory Table of Contents of Series Articles Preface 1. What is pandas? 1.ROI mask function 2. Image mosaic function 3. Calculate the keywords required for the mosaic 4. Perform batch mosaic, cropping, and masking Summarize Foreword For example: With the continuous development of artificial intelligence, machine […]

vue2+ant-design-vue a-form-model component secondary encapsulation (form form component) FormModel form

1. Renderings 2. Parameter configuration 1. Code example <t-antd-form :ref-obj.sync=”formOpts.ref” :formOpts=”formOpts” :widthSize=”1″ :labelCol=”{ span:2}” :wrapperCol=”{ span:22}” @handleEvent=”handleEvent” /> 2. Configuration parameters inherit all properties of FormModel Parameter Description Type Default value refObj form form validation rule method (you can refer to validate in the antd FormModel form method) obj – className Custom class name String […]

Configure GPU training environment (Anaconda) in pycharm (yolov5)

Table of Contents 1. Specific configuration process: 2. Create a virtual environment at the specified location (path): 3. Commonly used conda commands: 4: Some problems encountered when running the model: 4.1: conda added python interpreter cannot find the corresponding python.exe file 4.2: Error “OSError: [WinError 1455] The page file is too small and the operation […]