77% of Americans see bias in the news. Our Chrome extension makes it visible, analyzing sentiment and political lean so you can get all the information you want to know instantaneously.
NOTE: Angle's server is only fully supported on macOS and Linux
- Open a terminal (or PowerShell on Windows).
- Make sure git is installed. Run
git clone https://github.com/malwarecreators/angle.git - Run
cd ./angle/. - Make sure uv is installed. If on windows, see the "Note for Windows" section first. Run
uv sync. - Run
cd ./extension/. - Make sure Node.js is installed and corepack is enabled.
- Run
pnpm install. - Run
pnpm build. - Load the
distfolder as an unpacked extension in Google Chrome. - Run
cd ../. - Run
uv run angle. - Enjoy!
tweetnlp does not have first-class support for Windows. As a result, the following steps have to be performed to patch it.
- Add the following to the end of pyproject.toml:
[tool.uv]
override-dependencies = [
"ray; sys_platform == 'never'",
]- Run
uv sync. - Search all files in VSCode for
from ray import tune. - Delete any instance of that line.