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
Use Raspberry Pi Imager to install the Raspberry Pi OS (maybe 64-bit version). Change the setting before burning:
Use password to login with a new user. You have to setup a new user in the newer version of Raspberry Pi OS. Otherwise, SSH will refuse to connect.
Setup WiFi connection: SSID, password and region (e.g. 'CN'). Warning, use 2.4GHz band instead of 5GHz band for the most of the time.
Open SSH. This is closed by default.
Set the hostname. raspberrypi.local by default.
In a computer that connects to the same router, use command ping [hostname] (e.g. ping raspberrypi.local) to get the IP address of the Raspberry Pi.
Connect to the Raspberry Pi by SSH.
Use command ssh [username]@[IP].
Add new host to the local computer. Sometimes, you reinstall the OS on the Raspberry Pi, the key validation might get broken. In this scenario, you should delete the previous known host first in your ~/.ssh/known_hosts.
TVM is an open source machine learning compiler framework. The official guide gives some information about how to install it for macOS M1 chip. But there are still some pitfalls when installing. The setup for this tutorial is on MacBook Pro M1, macOS Ventura (13.0).
Download the source code
It is not recommended to just use pip to install tvm since the version is not compiled for apple chip. To maximize the availability, compile the source and then install it. You could download the released version of TVM source from download page, I use 0.10.0 in this tutorial.
Though in theory, you could git clone the source code from the offical GitHub repository. But it is tedious to download the submodules of this project -- they are just too many.
Since the recent Raspberry Pi OS has removed the preset user, use a
legacy version like 2022-01-28 will work. Download the Raspberry Pi OS and extract these files from the image:
bcm2710-rpi-3-b.dtb
kernel8.img
Resize the image to 8G to avoid the disk error. Since the disk space has to be the square of 2 and the image itself occupies 3.8G already. If you want to make more actions, please allocate a larger space.
Since macOS 10.15, PPTP support has been dropped and no longer available. But I have to connect to a server throught VPN that
only supports PPTP or L2TP without IPSec (No shared key or credentials). I tried the following ways:
Use a Windows machine as the mobile hotspot. First start the mobile hotspot, connect the macbook to this hotspot. Then start the VPN on the Windows machine. Then in the router settings, in the VPN Connection Properities, enable Internet connection sharing to allow other network users to connect through this computer's Internet connection, select the adapter corresponding to the hotspot. You may need to repeat this process when restarting the Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The .meta files are necessary for .fbx files. Don't ignore those files when you are using git for Unity projects. Otherwise, the Prefab importing error will occur.